orcli import json

import JSON

Usage

Arguments
Path to one or more files or URLs. When FILE is -, read standard input.
(repeatable)
Options
specify record path elements in JSON array
rename columns after import to remove record path fragments
attempt to parse cell text into numbers
add column with file source
add column with archive file name
load at most x row(s) of data
preserve empty strings
trim leading & trailing whitespace from strings
set a name for the OpenRefine project
set project tags (comma separated)
suppress log output, print errors only
Parent Environment Variables
URL to OpenRefine server

Examples

orcli import json "file"
orcli import json "file1" "file2"
orcli import json "https://example.com/file.json"
orcli import json "file" \
  --recordPath '[ "_", "rows", "_" ]' \
  --rename \
  --storeEmptyStrings \
  --trimStrings \
  --projectName "duplicates" \
  --projectTags "test,urgent"